* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#food_desc {
  text-align: center;
  padding: 0 16px;
}
#restaurant_title {
  text-align: center;
  padding: 0 16px;
}
.container {
  position: relative;
  width: 700px;
  height: 100vh !important;
  font-family: dana;
}

#event {
  font-family: dana;
  position: fixed;
  background-color: #dc9442;
  top: -80px;
  z-index: 100;
  width: 100%;
  transition: 1s;
  opacity: 0;
  padding: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  color: #fff;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
#event p {
  text-align: center;
}
#event button {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  font-family: inherit;
  background-color: transparent;
}
#change-data{
  display: none;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
  position: fixed;
  top: 40%;
  right: 33%;
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 7px;
  width: 30%;
}
div.modal-content div {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  height: 100%;
  min-height: 110px;
}

div.modal-content div p {
  font-family: dana;
  text-align: center;
}

@media screen and (max-width: 314px) {
  .modal-content {
    right: 4%;
    width: 92%;
  }
}
@media screen and (max-width: 370px) and (min-width: 315px) {
  .modal-content {
    right: 18%;
    width: 65%;
  }
}
@media screen and (max-width: 531px) and (min-width: 371px){
  .modal-content {
    right: 22.5%;
    width: 55%;
  }
}
@media screen and (max-width: 1024px) and (min-width: 951px) {
  .modal-content {
    right: 33%;
    width: 34%;
  }
}

@media (max-height: 410px) and (max-width: 323px) {
  .imagesSwiper {
    height: 24% !important;
  }
}
@media (min-height: 409px) and (max-height: 496px) and (max-width: 323px) {
  .imagesSwiper {
    height: 27% !important;
  }
}
@media (min-height: 495px) and (max-height: 673px) and (max-width: 323px) {
  .imagesSwiper {
    height: 30% !important;
  }
}